Issues with loading properties files using FileInputStream

App.java 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 package com.my;   import java.io.FileInputStream; import java.util.Properties;   public class App { public static void main( String[] args ) { String var = null; Properties properties = new Properties(); try { properties.load(new FileInputStream("test.properties")); var … Continue reading Issues with loading properties files using FileInputStream